【例子介绍】C#网络 服务器端 客户端编程实现文件传输
【相关图片】
【源码结构】
文件清单
└── FTP客户端与服务器端设计
├── E01-FtpServerExample
│ ├── FtpServerExample
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── FtpServerExample.exe
│ │ │ ├── FtpServerExample.pdb
│ │ │ └── FtpServerExample.vshost.exe
│ │ ├── FtpServerExample.csproj
│ │ ├── FtpServerExample.csproj.user
│ │ ├── MainForm.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.resx
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── FtpServerExample.csproj.FileListAbsolute.txt
│ │ │ │ ├── FtpServerExample.csproj.GenerateResource.Cache
│ │ │ │ ├── FtpServerExample.exe
│ │ │ │ ├── FtpServerExample.Form1.resources
│ │ │ │ ├── FtpServerExample.MainForm.resources
│ │ │ │ ├── FtpServerExample.pdb
│ │ │ │ ├── FtpServerExample.Properties.Resources.resources
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── FtpServerExample.csproj.FileListAbsolute.txt
│ │ │ └── FtpServerExample.csproj.FileList.txt
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── User.cs
│ │ └── UserSession.cs
│ ├── FtpServerExample.sln
│ └── FtpServerExample.suo
└── E02-FtpClientExample
├── FtpClientExample
│ ├── bin
│ │ └── Debug
│ │ ├── DownLoad
│ │ ├── FtpClientExample.exe
│ │ ├── FtpClientExample.pdb
│ │ ├── FtpClientExample.vshost.exe
│ │ └── FtpClientExample.vshost.exe.manifest
│ ├── FormMain.cs
│ ├── FormMain.Designer.cs
│ ├── FormMain.resx
│ ├── FtpClientExample.csproj
│ ├── FtpClientExample.csproj.user
│ ├── obj
│ │ ├── Debug
│ │ │ ├── FtpClientExample.csproj.FileListAbsolute.txt
│ │ │ ├── FtpClientExample.csproj.GenerateResource.Cache
│ │ │ ├── FtpClientExample.exe
│ │ │ ├── FtpClientExample.Form1.resources
│ │ │ ├── FtpClientExample.MainForm.resources
│ │ │ ├── FtpClientExample.pdb
│ │ │ ├── FtpClientExample.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── FtpClientExample.csproj.FileListAbsolute.txt
│ │ └── FtpClientExample.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── Resources
│ └── folder.ico
├── FtpClientExample.sln
└── FtpClientExample.suo
21 directories, 56 files
评论